| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347 |
1
93
93
93
93
93
93
93
1
94
94
94
94
94
15
94
94
188
94
2
2
94
3
3
94
2
2
94
94
94
94
94
94
92
92
92
92
92
94
92
14
14
94
77
75
75
77
77
77
77
94
98
97
97
3
3
94
17
17
77
77
97
97
1
96
96
96
69
96
96
69
96
96
96
96
96
96
96
96
96
96
96
69
69
69
96
93
1
8
94
23
22
1
21
21
21
16
21
21
21
16
16
16
21
21
1
4
4
4
4
94
89
94
94
5
4
4
1
1
94
1
117
1
17
93
1
94
93
91
93
34
35
35
385
35
35
140
7
35
70
52
35
9
9
35
35
35
35
35
35
| 'use strict';
angular.module('mgcrea.ngStrap.modal', ['mgcrea.ngStrap.helpers.dimensions'])
.provider('$modal', function() {
var defaults = this.defaults = {
animation: 'am-fade',
backdropAnimation: 'am-fade',
prefixClass: 'modal',
prefixEvent: 'modal',
placement: 'top',
template: 'modal/modal.tpl.html',
contentTemplate: false,
container: false,
element: null,
backdrop: true,
keyboard: true,
html: false,
show: true
};
this.$get = function($window, $rootScope, $compile, $q, $templateCache, $http, $animate, $timeout, $sce, dimensions) {
var forEach = angular.forEach;
var trim = String.prototype.trim;
var requestAnimationFrame = $window.requestAnimationFrame || $window.setTimeout;
var bodyElement = angular.element($window.document.body);
var htmlReplaceRegExp = /ng-bind="/ig;
function ModalFactory(config) {
var $modal = {};
// Common vars
var options = $modal.$options = angular.extend({}, defaults, config);
$modal.$promise = fetchTemplate(options.template);
var scope = $modal.$scope = options.scope && options.scope.$new() || $rootScope.$new();
if(!options.element && !options.container) {
options.container = 'body';
}
// store $id to identify the triggering element in events
// give priority to options.id, otherwise, try to use
// element id if defined
$modal.$id = options.id || options.element && options.element.attr('id') || '';
// Support scope as string options
forEach(['title', 'content'], function(key) {
if(options[key]) scope[key] = $sce.trustAsHtml(options[key]);
});
// Provide scope helpers
scope.$hide = function() {
scope.$$postDigest(function() {
$modal.hide();
});
};
scope.$show = function() {
scope.$$postDigest(function() {
$modal.show();
});
};
scope.$toggle = function() {
scope.$$postDigest(function() {
$modal.toggle();
});
};
// Publish isShown as a protected var on scope
$modal.$isShown = scope.$isShown = false;
// Support contentTemplate option
Iif(options.contentTemplate) {
$modal.$promise = $modal.$promise.then(function(template) {
var templateEl = angular.element(template);
return fetchTemplate(options.contentTemplate)
.then(function(contentTemplate) {
var contentEl = findElement('[ng-bind="content"]', templateEl[0]).removeAttr('ng-bind').html(contentTemplate);
// Drop the default footer as you probably don't want it if you use a custom contentTemplate
if(!config.template) contentEl.next().remove();
return templateEl[0].outerHTML;
});
});
}
// Fetch, compile then initialize modal
var modalLinker, modalElement;
var backdropElement = angular.element('<div class="' + options.prefixClass + '-backdrop"/>');
backdropElement.css({position:'fixed', top:'0px', left:'0px', bottom:'0px', right:'0px', 'z-index': 1038});
$modal.$promise.then(function(template) {
Iif(angular.isObject(template)) template = template.data;
if(options.html) template = template.replace(htmlReplaceRegExp, 'ng-bind-html="');
template = trim.apply(template);
modalLinker = $compile(template);
$modal.init();
});
$modal.init = function() {
// Options: show
if(options.show) {
scope.$$postDigest(function() {
$modal.show();
});
}
};
$modal.destroy = function() {
// Remove element
if(modalElement) {
modalElement.remove();
modalElement = null;
}
Eif(backdropElement) {
backdropElement.remove();
backdropElement = null;
}
// Destroy scope
scope.$destroy();
};
$modal.show = function() {
if($modal.$isShown) return;
var parent, after;
if(angular.isElement(options.container)) {
parent = options.container;
after = options.container[0].lastChild ? angular.element(options.container[0].lastChild) : null;
} else {
if (options.container) {
parent = findElement(options.container);
after = parent[0] && parent[0].lastChild ? angular.element(parent[0].lastChild) : null;
} else {
parent = null;
after = options.element;
}
}
// Fetch a cloned element linked from template
modalElement = $modal.$element = modalLinker(scope, function(clonedElement, scope) {});
if(scope.$emit(options.prefixEvent + '.show.before', $modal).defaultPrevented) {
return;
}
// Set the initial positioning.
modalElement.css({display: 'block'}).addClass(options.placement);
// Options: animation
Eif(options.animation) {
if(options.backdrop) {
backdropElement.addClass(options.backdropAnimation);
}
modalElement.addClass(options.animation);
}
if(options.backdrop) {
$animate.enter(backdropElement, bodyElement, null);
}
// Support v1.3+ $animate
// https://github.com/angular/angular.js/commit/bf0f5502b1bbfddc5cdd2f138efd9188b8c652a9
var promise = $animate.enter(modalElement, parent, after, enterAnimateCallback);
Eif(promise && promise.then) promise.then(enterAnimateCallback);
$modal.$isShown = scope.$isShown = true;
safeDigest(scope);
// Focus once the enter-animation has started
// Weird PhantomJS bug hack
var el = modalElement[0];
requestAnimationFrame(function() {
el.focus();
});
bodyElement.addClass(options.prefixClass + '-open');
Eif(options.animation) {
bodyElement.addClass(options.prefixClass + '-with-' + options.animation);
}
// Bind events
if(options.backdrop) {
modalElement.on('click', hideOnBackdropClick);
backdropElement.on('click', hideOnBackdropClick);
backdropElement.on('wheel', preventEventDefault);
}
if(options.keyboard) {
modalElement.on('keyup', $modal.$onKeyUp);
}
};
function enterAnimateCallback() {
scope.$emit(options.prefixEvent + '.show', $modal);
}
$modal.hide = function() {
if(!$modal.$isShown) return;
if(scope.$emit(options.prefixEvent + '.hide.before', $modal).defaultPrevented) {
return;
}
var promise = $animate.leave(modalElement, leaveAnimateCallback);
// Support v1.3+ $animate
// https://github.com/angular/angular.js/commit/bf0f5502b1bbfddc5cdd2f138efd9188b8c652a9
Eif(promise && promise.then) promise.then(leaveAnimateCallback);
if(options.backdrop) {
$animate.leave(backdropElement);
}
$modal.$isShown = scope.$isShown = false;
safeDigest(scope);
// Unbind events
if(options.backdrop) {
modalElement.off('click', hideOnBackdropClick);
backdropElement.off('click', hideOnBackdropClick);
backdropElement.off('wheel', preventEventDefault);
}
Eif(options.keyboard) {
modalElement.off('keyup', $modal.$onKeyUp);
}
};
function leaveAnimateCallback() {
scope.$emit(options.prefixEvent + '.hide', $modal);
bodyElement.removeClass(options.prefixClass + '-open');
Eif(options.animation) {
bodyElement.removeClass(options.prefixClass + '-with-' + options.animation);
}
}
$modal.toggle = function() {
$modal.$isShown ? $modal.hide() : $modal.show();
};
$modal.focus = function() {
modalElement[0].focus();
};
// Protected methods
$modal.$onKeyUp = function(evt) {
if (evt.which === 27 && $modal.$isShown) {
$modal.hide();
evt.stopPropagation();
}
};
// Private methods
function hideOnBackdropClick(evt) {
if(evt.target !== evt.currentTarget) return;
options.backdrop === 'static' ? $modal.focus() : $modal.hide();
}
function preventEventDefault(evt) {
evt.preventDefault();
}
return $modal;
}
// Helper functions
function safeDigest(scope) {
scope.$$phase || (scope.$root && scope.$root.$$phase) || scope.$digest();
}
function findElement(query, element) {
return angular.element((element || document).querySelectorAll(query));
}
var fetchPromises = {};
function fetchTemplate(template) {
if(fetchPromises[template]) return fetchPromises[template];
return (fetchPromises[template] = $http.get(template, {cache: $templateCache}).then(function(res) {
return res.data;
}));
}
return ModalFactory;
};
})
.directive('bsModal', function($window, $sce, $modal) {
return {
restrict: 'EAC',
scope: true,
link: function postLink(scope, element, attr, transclusion) {
// Directive options
var options = {scope: scope, element: element, show: false};
angular.forEach(['template', 'contentTemplate', 'placement', 'backdrop', 'keyboard', 'html', 'container', 'animation', 'id', 'prefixEvent', 'prefixClass'], function(key) {
if(angular.isDefined(attr[key])) options[key] = attr[key];
});
// use string regex match boolean attr falsy values, leave truthy values be
var falseValueRegExp = /^(false|0|)$/i;
angular.forEach(['backdrop', 'keyboard', 'html', 'container'], function(key) {
if(angular.isDefined(attr[key]) && falseValueRegExp.test(attr[key]))
options[key] = false;
});
// Support scope as data-attrs
angular.forEach(['title', 'content'], function(key) {
attr[key] && attr.$observe(key, function(newValue, oldValue) {
scope[key] = $sce.trustAsHtml(newValue);
});
});
// Support scope as an object
attr.bsModal && scope.$watch(attr.bsModal, function(newValue, oldValue) {
Eif(angular.isObject(newValue)) {
angular.extend(scope, newValue);
} else {
scope.content = newValue;
}
}, true);
// Initialize modal
var modal = $modal(options);
// Trigger
element.on(attr.trigger || 'click', modal.toggle);
// Garbage collection
scope.$on('$destroy', function() {
Eif (modal) modal.destroy();
options = null;
modal = null;
});
}
};
});
|